Package pl. wendigo. chrome. api. indexeddb
Contains DevTools Protocol IndexedDB domain implementation accessible via IndexedDBDomain class.
Types
ClearObjectStoreRequest
Link copied to clipboard
data class ClearObjectStoreRequest(securityOrigin: String, databaseName: String, objectStoreName: String)
Content copied to clipboard
Represents request frame that can be used with IndexedDB#clearObjectStore operation call.
DatabaseWithObjectStores
Link copied to clipboard
data class DatabaseWithObjectStores(name: String, version: Double, objectStores: List<ObjectStore>)
Content copied to clipboard
DataEntry
Link copied to clipboard
data class DataEntry(key: RemoteObject, primaryKey: RemoteObject, value: RemoteObject)
Content copied to clipboard
DeleteDatabaseRequest
Link copied to clipboard
data class DeleteDatabaseRequest(securityOrigin: String, databaseName: String)
Content copied to clipboard
Represents request frame that can be used with IndexedDB#deleteDatabase operation call.
DeleteObjectStoreEntriesRequest
Link copied to clipboard
data class DeleteObjectStoreEntriesRequest(securityOrigin: String, databaseName: String, objectStoreName: String, keyRange: KeyRange)
Content copied to clipboard
Represents request frame that can be used with IndexedDB#deleteObjectStoreEntries operation call.
GetMetadataRequest
Link copied to clipboard
data class GetMetadataRequest(securityOrigin: String, databaseName: String, objectStoreName: String)
Content copied to clipboard
Represents request frame that can be used with IndexedDB#getMetadata operation call.
GetMetadataResponse
Link copied to clipboard
data class GetMetadataResponse(entriesCount: Double, keyGeneratorValue: Double)
Content copied to clipboard
Represents response frame that is returned from IndexedDB#getMetadata operation call.
IndexedDBDomain
Link copied to clipboard
ObjectStore
Link copied to clipboard
data class ObjectStore(name: String, keyPath: KeyPath, autoIncrement: Boolean, indexes: List<ObjectStoreIndex>)
Content copied to clipboard
ObjectStoreIndex
Link copied to clipboard
data class ObjectStoreIndex(name: String, keyPath: KeyPath, unique: Boolean, multiEntry: Boolean)
Content copied to clipboard
RequestDatabaseNamesRequest
Link copied to clipboard
RequestDatabaseNamesResponse
Link copied to clipboard
RequestDatabaseRequest
Link copied to clipboard
data class RequestDatabaseRequest(securityOrigin: String, databaseName: String)
Content copied to clipboard
Represents request frame that can be used with IndexedDB#requestDatabase operation call.
RequestDatabaseResponse
Link copied to clipboard
data class RequestDatabaseResponse(databaseWithObjectStores: DatabaseWithObjectStores)
Content copied to clipboard
Represents response frame that is returned from IndexedDB#requestDatabase operation call.
RequestDataRequest
Link copied to clipboard
RequestDataResponse
Link copied to clipboard
data class RequestDataResponse(objectStoreDataEntries: List<DataEntry>, hasMore: Boolean)
Content copied to clipboard
Represents response frame that is returned from IndexedDB#requestData operation call.